.info {
    position: absolute;
    z-index: 1;
    top: 8px;
    left: 8px;

    display: flex;
    flex-direction: row;
    align-items: center;

    width: 255px;
    padding: 8px 12px;

    font-size: 14px;
    font-style: normal;
    line-height: 20px;

    color: var(--panel-color);
    border-radius: 12px;
    background-color: var(--panel-background-color);
    box-shadow: 0 0 2px 0 rgba(95, 105, 131, 0.08), 0 2px 4px 0 rgba(95, 105, 131, 0.2);
    gap: 6px;
}

.icon {
    display: block;

    width: 16px;
    height: 16px;

    background-image: url(./info.svg);
}

.container {
    display: flex;
    justify-content: flex-start;
    align-items: flex-start;

    width: 100%;
    height: 100%;

    background-color: #f5f6f7;
}
